home *** CD-ROM | disk | FTP | other *** search
/ ATL Press Kit / ATL Press Kit.iso / mac / Press Kit / Content / Media / launch.dxr / 00001_Open New Window.ls next >
Encoding:
Text File  |  2005-12-19  |  315 b   |  11 lines

  1. on exitFrame me
  2.   window("main").fileName = "main"
  3.   window("main").windowType = member("empty")
  4.   winLeft = the stageRight - 512
  5.   winTop = the stageTop - 384
  6.   winRight = the stageRight + 512
  7.   winBot = the stageTop + 384
  8.   window("main").rect = rect(winLeft, winTop, winRight, winBot)
  9.   open(window("main"))
  10. end
  11.